home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / iscan.c < prev    next >
C/C++ Source or Header  |  1997-07-06  |  29KB  |  1,036 lines

  1. /* Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* iscan.c */
  20. /* Token scanner for Ghostscript interpreter */
  21. #include "ghost.h"
  22. #include "memory_.h"
  23. #include "stream.h"
  24. #include "errors.h"
  25. #include "files.h"            /* for fptr */
  26. #include "ialloc.h"
  27. #include "idict.h"            /* for //name lookup */
  28. #include "dstack.h"            /* ditto */
  29. #include "ilevel.h"
  30. #include "iname.h"
  31. #include "ipacked.h"
  32. #include "iparray.h"
  33. #include "strimpl.h"            /* for string decoding */
  34. #include "sfilter.h"            /* ditto */
  35. #include "ostack.h"            /* for accumulating proc bodies; */
  36.                     /* must precede iscan.h */
  37. #include "iscan.h"            /* defines interface */
  38. #include "iscannum.h"
  39. #include "istream.h"
  40. #include "istruct.h"        /* for gs_reloc_refs */
  41. #include "iutil.h"
  42. #include "ivmspace.h"
  43. #include "store.h"
  44. #include "scanchar.h"
  45.  
  46. /* Array packing flag */
  47. ref ref_array_packing;            /* t_boolean */
  48. /* Binary object format flag. This will never be set non-zero */
  49. /* unless the binary token feature is enabled. */
  50. ref ref_binary_object_format;        /* t_integer */
  51. #define recognize_btokens()\
  52.   (ref_binary_object_format.value.intval != 0 && level2_enabled)
  53.  
  54. /* Procedure for binary tokens.  Set at initialization if Level 2 */
  55. /* features are included; only called if recognize_btokens() is true. */
  56. /* Returns 0 or scan_BOS on success, <0 on failure. */
  57. int (*scan_btoken_proc)(P3(stream *, ref *, scanner_state *)) = NULL;
  58.  
  59. /* Stream template for scanning ASCII85 literals. */
  60. /* Set at initialization if Level 2 features are included. */
  61. const stream_template _ds *scan_ascii85_template = NULL;
  62.  
  63. #ifdef DEBUG
  64. /* Dummy comment processing procedure for testing. */
  65. private int
  66. no_comment_proc(const byte *str, uint len)
  67. {    return 0;
  68. }
  69. #endif
  70.  
  71. /* Procedure for handling DSC comments if desired. */
  72. /* Set at initialization if a DSC handling module is included. */
  73. int (*scan_dsc_proc)(P2(const byte *, uint)) = NULL;
  74.  
  75. /* Procedure for handling all comments if desired. */
  76. /* Set at initialization if a comment handling module is included. */
  77. /* If both scan_comment_proc and scan_dsc_proc are set, */
  78. /* scan_comment_proc is called only for non-DSC comments. */
  79. int (*scan_comment_proc)(P2(const byte *, uint)) = NULL;
  80.  
  81. /*
  82.  * Level 2 includes some changes in the scanner:
  83.  *    - \ is always recognized in strings, regardless of the data source;
  84.  *    - << and >> are legal tokens;
  85.  *    - <~ introduces an ASCII85 encoded string (terminated by ~>);
  86.  *    - Character codes above 127 introduce binary objects.
  87.  * We explicitly enable or disable these changes here.
  88.  */
  89. #define scan_enable_level2 level2_enabled    /* from ilevel.h */
  90.  
  91. /* ------ Dynamic strings ------ */
  92.  
  93. /* Begin collecting a dynamically allocated string. */
  94. #define dynamic_init(pda, mem)\
  95.     ((pda)->is_dynamic = false,\
  96.      (pda)->limit = (pda)->buf + da_buf_size,\
  97.      (pda)->next = (pda)->base = (pda)->buf,\
  98.      (pda)->memory = (mem))
  99.  
  100. /* Free a dynamic string. */
  101. private void
  102. dynamic_free(da_ptr pda)
  103. {    if ( pda->is_dynamic )
  104.       gs_free_string(pda->memory, pda->base, da_size(pda), "scanner");
  105. }
  106.  
  107. /* Resize a dynamic string. */
  108. /* If the allocation fails, return e_VMerror; otherwise, return 0. */
  109. private int
  110. dynamic_resize(register da_ptr pda, uint new_size)
  111. {    uint old_size = da_size(pda);
  112.     uint pos = pda->next - pda->base;
  113.     gs_memory_t *mem = pda->memory;
  114.     byte *base;
  115.     if ( pda->is_dynamic )
  116.     {    base = gs_resize_string(mem, pda->base, old_size,
  117.                     new_size, "scanner");
  118.         if ( base == 0 )
  119.           return_error(e_VMerror);
  120.     }
  121.     else        /* switching from static to dynamic */
  122.     {    base = gs_alloc_string(mem, new_size, "scanner");
  123.         if ( base == 0 )
  124.           return_error(e_VMerror);
  125.         memcpy(base, pda->base, min(old_size, new_size));
  126.         pda->is_dynamic = true;
  127.     }
  128.     pda->base = base;
  129.     pda->next = base + pos;
  130.     pda->limit = base + new_size;
  131.     return 0;
  132. }
  133.  
  134. /* Grow a dynamic string. */
  135. /* Return 0 if the allocation failed, the new 'next' ptr if OK. */
  136. /* Return 0 or an error code, updating pda->next to point to the first */
  137. /* available byte after growing. */
  138. private int
  139. dynamic_grow(register da_ptr pda, byte *next, uint max_size)
  140. {    uint old_size = da_size(pda);
  141.     uint new_size = (old_size < 10 ? 20 :
  142.              old_size >= (max_size >> 1) ? max_size :
  143.              old_size << 1);
  144.     int code;
  145.     pda->next = next;
  146.     if ( old_size == max_size )
  147.       return_error(e_limitcheck);
  148.     while ( (code = dynamic_resize(pda, new_size)) < 0 &&
  149.         new_size > old_size
  150.           )
  151.     {    /* Try trimming down the requested new size. */
  152.         new_size -= (new_size - old_size + 1) >> 1;
  153.     }
  154.     return code;
  155. }
  156.  
  157. /* Ensure that a dynamic string is either on the heap or in the */
  158. /* private buffer. */
  159. private void
  160. dynamic_save(da_ptr pda)
  161. {    if ( !pda->is_dynamic && pda->base != pda->buf )
  162.       {    memcpy(pda->buf, pda->base, da_size(pda));
  163.         pda->next = pda->buf + da_size(pda);
  164.         pda->base = pda->buf;
  165.       }
  166. }
  167.  
  168. /* Finish collecting a dynamic string. */
  169. private int
  170. dynamic_make_string(ref *pref, da_ptr pda, byte *next)
  171. {    uint size = (pda->next = next) - pda->base;
  172.     int code = dynamic_resize(pda, size);
  173.     if ( code < 0 )
  174.       return code;
  175.     make_tasv_new(pref, t_string,
  176.               a_all | imemory_space((gs_ref_memory_t *)pda->memory),
  177.               size, bytes, pda->base);
  178.     return 0;
  179. }
  180.  
  181. /* ------ Main scanner ------ */
  182.  
  183. /* GC procedures */
  184. #define ssptr ((scanner_state *)vptr)
  185. #define ssarray ssptr->s_ss.binary.bin_array
  186. private CLEAR_MARKS_PROC(scanner_clear_marks) {
  187.     r_clear_attrs(&ssarray, l_mark);
  188. }
  189. private ENUM_PTRS_BEGIN(scanner_enum_ptrs) return 0;
  190.     case 0:
  191.         if ( ssptr->s_scan_type == scanning_none ||
  192.              !ssptr->s_da.is_dynamic
  193.            )
  194.           ENUM_RETURN(0);
  195.         ssptr->s_da.str.data = ssptr->s_da.base;
  196.         ssptr->s_da.str.size = da_size(&ssptr->s_da);
  197.         ENUM_RETURN_STRING_PTR(scanner_state, s_da.str);
  198.     case 1:
  199.         if ( ssptr->s_scan_type != scanning_binary )
  200.           return 0;
  201.         *pep = &ssarray;
  202.         return ptr_ref_type;
  203. ENUM_PTRS_END
  204. private RELOC_PTRS_BEGIN(scanner_reloc_ptrs) {
  205.     if ( ssptr->s_scan_type != scanning_none && ssptr->s_da.is_dynamic )
  206.       {    RELOC_STRING_PTR(scanner_state, s_da.str);
  207.         ssptr->s_da.limit = ssptr->s_da.str.data + ssptr->s_da.str.size;
  208.         ssptr->s_da.next = ssptr->s_da.str.data + (ssptr->s_da.next - ssptr->s_da.base);
  209.         ssptr->s_da.base = ssptr->s_da.str.data;
  210.       }
  211.     if ( ssptr->s_scan_type == scanning_binary )
  212.       {    gs_reloc_refs((ref_packed *)&ssarray,
  213.                   (ref_packed *)(&ssarray + 1),
  214.                   gcst);
  215.         r_clear_attrs(&ssarray, l_mark);
  216.       }
  217. } RELOC_PTRS_END
  218. #undef ssptr
  219. /* Structure type */
  220. public_st_scanner_state();
  221.  
  222. /* Initialize the scanner. */
  223. void
  224. scan_init(void)
  225. {    make_false(&ref_array_packing);
  226.     make_int(&ref_binary_object_format, 0);
  227. }
  228.  
  229. /* Handle a scan_Refill return from scan_token. */
  230. /* This may return o_push_estack, 0 (meaning just call scan_token again), */
  231. /* or an error code. */
  232. int
  233. scan_handle_refill(const ref *fop, scanner_state *sstate, bool save,
  234.   bool push_file, int (*cont)(P1(os_ptr)))
  235. {    stream *s = fptr(fop);
  236.     uint avail = sbufavailable(s);
  237.     int status;
  238.  
  239.     if ( s->end_status == EOFC )
  240.       {    /* More data needed, but none available, */
  241.         /* so this is a syntax error. */
  242.         return_error(e_syntaxerror);
  243.       }
  244.     status = s_process_read_buf(s);
  245.     if ( sbufavailable(s) > avail )
  246.         return 0;
  247.     if ( status == 0 )
  248.         status = s->end_status;
  249.     switch ( status )
  250.       {
  251.       case EOFC:
  252.         /* We just discovered that we're at EOF. */
  253.         /* Let the caller find this out. */
  254.         return 0;
  255.       case ERRC:
  256.         return_error(e_ioerror);
  257.       case INTC:
  258.       case CALLC:
  259.         { ref rstate[2];
  260.           scanner_state *pstate;
  261.           int nstate = (push_file ? 2 : 1);
  262.  
  263.           if ( save )
  264.             {    pstate =
  265.               ialloc_struct(scanner_state, &st_scanner_state,
  266.                     "scan_handle_refill");
  267.             if ( pstate == 0 )
  268.               return_error(e_VMerror);
  269.             *pstate = *sstate;
  270.             }
  271.           else
  272.             pstate = sstate;
  273.           /* If push_file is true, we want to push the file on the */
  274.           /* o-stack before the state, for the continuation proc. */
  275.           /* Since the refs passed to s_handle_read_exception */
  276.           /* are pushed on the e-stack, we must ensure they are */
  277.           /* literal, and also pass them in the opposite order! */
  278.           make_istruct(&rstate[0], 0, pstate);
  279.           rstate[1] = *fop;
  280.           r_clear_attrs(&rstate[1], a_executable);
  281.           return s_handle_read_exception(status, fop,
  282.                          rstate, nstate, cont);
  283.         }
  284.       }
  285.     /* No more data available, but no exception.  How can this be? */
  286.     lprintf("Can't refill scanner input buffer!");
  287.     return_error(e_Fatal);
  288. }
  289.  
  290. /* Handle a comment.  The 'saved' argument is needed only for */
  291. /* tracing printout. */
  292. private int
  293. scan_comment(const byte *base, const byte *end, bool saved)
  294. {    uint len = (uint)(end - base);
  295. #ifdef DEBUG
  296.     const char *sstr = (saved ? ">" : "");
  297. #endif
  298.     if ( len > 1 && base[1] == '%' && scan_dsc_proc != NULL )
  299.       { 
  300. #ifdef DEBUG
  301.         if ( gs_debug_c('%') )
  302.           {    dprintf2("[%%%%%s%c]", sstr, (len >= 3 ? '+' : '-'));
  303.             fwrite(base, 1, len, dstderr);
  304.             dputs("\n");
  305.           }
  306. #endif
  307.         if ( end - base >= 3 )
  308.           return (*scan_dsc_proc)(base, len);
  309.       }
  310.     else if ( scan_comment_proc != NULL )
  311.       {
  312. #ifdef DEBUG
  313.         if ( gs_debug_c('%') )
  314.           {    dprintf2("[%% %s%c]", sstr, (len >= 2 ? '+' : '-'));
  315.             fwrite(base, 1, len, dstderr);
  316.             dputs("\n");
  317.           }
  318. #endif
  319.         if ( end - base >= 2 )
  320.           return (*scan_comment_proc)(base, len);
  321.       }
  322.     return 0;
  323. }
  324.  
  325. /* Read a token from a string. */
  326. /* Update the string if succesful. */
  327. int
  328. scan_string_token(ref *pstr, ref *pref)
  329. {    stream st;
  330.     stream *s = &st;
  331.     scanner_state state;
  332.     int code;
  333.  
  334.     if ( !r_has_attr(pstr, a_read) )
  335.       return_error(e_invalidaccess);
  336.     sread_string(s, pstr->value.bytes, r_size(pstr));
  337.     scanner_state_init(&state, true);
  338.     switch ( code = scan_token(s, pref, &state) )
  339.     {
  340.     case 0:                /* read a token */
  341.     case scan_BOS:
  342.     {    uint pos = stell(s);
  343.         pstr->value.bytes += pos;
  344.         r_dec_size(pstr, pos);
  345.     }    break;
  346.     case scan_Refill:        /* error */
  347.         code = gs_note_error(e_syntaxerror);
  348.     default:            /* error */
  349.         ;
  350.     }
  351.     return code;
  352. }
  353.  
  354. /*
  355.  * Read a token from a stream.
  356.  * Return 0 if an ordinary token was read,
  357.  * scan_BOS for a binary object sequence, scan_EOF for end-of-stream,
  358.  * scan_Refill if more data needed, or a (negative) error code.
  359.  * If the token required a terminating character (i.e., was a name or
  360.  * number) and the next character was whitespace, read and discard
  361.  * that character.  Note that the state is relevant for e_VMerror
  362.  * as well as for scan_Refill.
  363.  */
  364. int
  365. scan_token(register stream *s, ref *pref, scanner_state *pstate)
  366. {    ref *myref = pref;
  367.     int retcode = 0;
  368.     register int c;
  369.     s_declare_inline(s, sptr, endptr);
  370. #define scan_begin_inline() s_begin_inline(s, sptr, endptr)
  371. #define scan_getc() sgetc_inline(s, sptr, endptr)
  372. #define scan_putback() sputback_inline(s, sptr, endptr)
  373. #define scan_end_inline() s_end_inline(s, sptr, endptr)
  374.     const byte *newptr;
  375.     byte *daptr;
  376. #define sreturn(code)\
  377.   { retcode = gs_note_error(code); goto sret; }
  378. #define sreturn_no_error(code)\
  379.   { scan_end_inline(); return(code); }
  380. #define if_not_spush1()\
  381.   if ( osp < ostop ) osp++;\
  382.   else if ( (retcode = ref_stack_push(&o_stack, 1)) >= 0 )\
  383.     ;\
  384.   else
  385. #define spop1()\
  386.   if ( osp >= osbot ) osp--;\
  387.   else ref_stack_pop(&o_stack, 1)
  388.     int max_name_ctype =
  389.       (recognize_btokens() ? ctype_name : ctype_btoken);
  390. #define scan_sign(sign, ptr)\
  391.   switch ( *ptr ) {\
  392.     case '-': sign = -1; ptr++; break;\
  393.     case '+': sign = 1; ptr++; break;\
  394.     default: sign = 0;\
  395.   }
  396. #define ensure2_back(styp,nback)\
  397.   if ( sptr >= endptr ) { sptr -= nback; scan_type = styp; goto pause; }
  398. #define ensure2(styp) ensure2_back(styp, 1)
  399.     byte s1[2];
  400.     register const byte _ds *decoder = scan_char_decoder;
  401.     int status;
  402.     int sign;
  403.     scanner_state sstate;
  404. #define pstack sstate.s_pstack
  405. #define pdepth sstate.s_pdepth
  406. #define scan_type sstate.s_scan_type
  407. #define da sstate.s_da
  408. #define name_type sstate.s_ss.s_name.s_name_type
  409. #define try_number sstate.s_ss.s_name.s_try_number
  410.  
  411.     if ( pstate->s_pstack != 0 )
  412.       {    if_not_spush1()
  413.           return retcode;
  414.         myref = osp;
  415.       }
  416.     /* Check whether we are resuming after an interruption. */
  417.     if ( pstate->s_scan_type != scanning_none )
  418.       {    sstate = *pstate;
  419.         if ( !da.is_dynamic && da.base != da.buf )
  420.           {    /* The da contains some self-referencing pointers. */
  421.             /* Fix them up now. */
  422.             uint size = da.next - da.base;
  423.             da.base = da.buf;
  424.             da.next = da.buf + size;
  425.             da.limit = da.buf + da_buf_size;
  426.           }
  427.         daptr = da.next;
  428.         switch ( scan_type )
  429.         {
  430.         case scanning_binary:
  431.             retcode = (*sstate.s_ss.binary.cont)(s, myref, &sstate);
  432.             scan_begin_inline();
  433.             if ( retcode == scan_Refill )
  434.               goto pause;
  435.             goto sret;
  436.         case scanning_comment:
  437.             scan_begin_inline();
  438.             goto cont_comment;
  439.         case scanning_name:
  440.             goto cont_name;
  441.         case scanning_string:
  442.             goto cont_string;
  443.         default:
  444.             return_error(e_Fatal);
  445.         }
  446.       }
  447.     /* Fetch any state variables that are relevant even if */
  448.     /* scan_type == scanning_none. */
  449.     pstack = pstate->s_pstack;
  450.     pdepth = pstate->s_pdepth;
  451.     scan_begin_inline();
  452.     /*
  453.      * Loop invariants:
  454.      *    If pstack != 0, myref = osp, and *osp is a valid slot.
  455.      */
  456. top:    c = scan_getc();
  457.     if_debug1('S', (c >= 32 && c <= 126 ? "`%c'" : c >= 0 ? "`\\%03o'" : "`%d'"), c);
  458.     switch ( c )
  459.     {
  460.     case ' ': case '\f': case '\t':
  461.     case char_CR: case char_EOL:
  462.     case char_NULL:
  463.         goto top;
  464.     case '[':
  465.     case ']':
  466.         s1[0] = (byte)c;
  467.         retcode = name_ref(s1, 1, myref, 1);    /* can't fail */
  468.         r_set_attrs(myref, a_executable);
  469.         break;
  470.     case '<':
  471.         if ( scan_enable_level2 )
  472.         {    ensure2(scanning_none);
  473.             c = scan_getc();
  474.             switch ( c )
  475.             {
  476.             case '<':
  477.                 scan_putback();
  478.                 name_type = 0;
  479.                 try_number = false;
  480.                 goto try_funny_name;
  481.             case '~':
  482.                 s_A85D_init_inline(&sstate.s_ss.a85d);
  483.                 sstate.s_ss.st.template =
  484.                   scan_ascii85_template;
  485.                 goto str;
  486.             }
  487.             scan_putback();
  488.         }
  489.         s_AXD_init_inline(&sstate.s_ss.axd);
  490.         sstate.s_ss.st.template = &s_AXD_template;
  491. str:        scan_end_inline();
  492.         dynamic_init(&da, imemory);
  493. cont_string:    for ( ; ; )
  494.           {    stream_cursor_write w;
  495.             w.ptr = da.next - 1;
  496.             w.limit = da.limit - 1;
  497.             status = (*sstate.s_ss.st.template->process)
  498.               (&sstate.s_ss.st, &s->cursor.r, &w,
  499.                s->end_status == EOFC);
  500.             da.next = w.ptr + 1;
  501.             switch ( status )
  502.             {
  503.             case 0:
  504.                 status = s->end_status;
  505.                 if ( status < 0 )
  506.                   {    if ( status == EOFC )
  507.                       sreturn(e_syntaxerror);
  508.                     break;
  509.                   }
  510.                 s_process_read_buf(s);
  511.                 continue;
  512.             case 1:
  513.                 retcode = dynamic_grow(&da, da.next,
  514.                                max_string_size);
  515.                 if ( retcode == e_VMerror )
  516.                   {    scan_type = scanning_string;
  517.                     goto suspend;
  518.                   }
  519.                 else if ( retcode < 0 )
  520.                   sreturn(retcode);
  521.                 continue;
  522.             }
  523.             break;
  524.           }
  525.         scan_begin_inline();
  526.         switch ( status )
  527.         {
  528.         default:
  529.         /*case ERRC:*/
  530.             sreturn(e_syntaxerror);
  531.         case INTC:
  532.         case CALLC:
  533.             scan_type = scanning_string;
  534.             goto pause;
  535.         case EOFC:
  536.             ;
  537.         }
  538.         retcode = dynamic_make_string(myref, &da, da.next);
  539.         if ( retcode < 0 )    /* VMerror */
  540.           {    sputback(s);    /* rescan ) */
  541.             scan_type = scanning_string;
  542.             goto suspend;
  543.           }
  544.         break;
  545.     case '(':
  546.         sstate.s_ss.pssd.from_string =
  547.           pstate->s_from_string && !scan_enable_level2;
  548.         s_PSSD_init_inline(&sstate.s_ss.pssd);
  549.         sstate.s_ss.st.template = &s_PSSD_template;
  550.         goto str;
  551.     case '{':
  552.         if ( pstack == 0 )    /* outermost procedure */
  553.           {    if_not_spush1()
  554.               {    scan_putback();
  555.                 scan_type = scanning_none;
  556.                 goto pause_ret;
  557.               }
  558.             pdepth = ref_stack_count_inline(&o_stack);
  559.           }
  560.         make_int(osp, pstack);
  561.         pstack = ref_stack_count_inline(&o_stack);
  562.         if_debug3('S', "[S{]d=%d, s=%d->%d\n",
  563.               pdepth, (int)osp->value.intval, pstack);
  564.         goto snext;
  565.     case '>':
  566.         if ( scan_enable_level2 )
  567.         {    ensure2(scanning_none);
  568.             name_type = 0;
  569.             try_number = false;
  570.             goto try_funny_name;
  571.         }
  572.         /* falls through */
  573.     case ')':
  574.         sreturn(e_syntaxerror);
  575.     case '}':
  576.         if ( pstack == 0 )
  577.           sreturn(e_syntaxerror);
  578.         osp--;
  579.         {    uint size = ref_stack_count_inline(&o_stack) - pstack;
  580.             ref arr;
  581.             if_debug4('S', "[S}]d=%d, s=%d->%ld, c=%d\n",
  582.                   pdepth, pstack,
  583.                   (pstack == pdepth ? 0 :
  584.                    ref_stack_index(&o_stack, size)->value.intval),
  585.                   size + pstack);
  586.             myref = (pstack == pdepth ? pref : &arr);
  587.             if ( ref_array_packing.value.boolval )
  588.               {    retcode = make_packed_array(myref, &o_stack,
  589.                         size, "scanner(packed)");
  590.                 if ( retcode < 0 )    /* must be VMerror */
  591.                   {    osp++;
  592.                     scan_putback();
  593.                     scan_type = scanning_none;
  594.                     goto pause_ret;
  595.                   }
  596.                 r_set_attrs(myref, a_executable);
  597.               }
  598.             else
  599.               {    retcode = ialloc_ref_array(myref,
  600.                         a_executable + a_all, size,
  601.                         "scanner(proc)");
  602.                 if ( retcode < 0 )    /* must be VMerror */
  603.                   {    osp++;
  604.                     scan_putback();
  605.                     scan_type = scanning_none;
  606.                     goto pause_ret;
  607.                   }
  608.                 retcode = ref_stack_store(&o_stack, myref,
  609.                         size, 0, 1, false, "scanner");
  610.                 if ( retcode < 0 )
  611.                   {    ifree_ref_array(myref, "scanner(proc)");
  612.                     sreturn(retcode);
  613.                   }
  614.                 ref_stack_pop(&o_stack, size);
  615.               }
  616.             if ( pstack == pdepth )
  617.               {    /* This was the top-level procedure. */
  618.                 spop1();
  619.                 pstack = 0;
  620.               }
  621.             else
  622.               {    if ( osp < osbot )
  623.                   ref_stack_pop_block(&o_stack);
  624.                 pstack = osp->value.intval;
  625.                 *osp = arr;
  626.                 goto snext;
  627.               }
  628.         }
  629.         break;
  630.     case '/':
  631.         ensure2(scanning_none);
  632.         c = scan_getc();
  633.         if ( c == '/' )
  634.         {    name_type = 2;
  635.             c = scan_getc();
  636.         }
  637.         else
  638.             name_type = 1;
  639.         try_number = false;
  640.         switch ( decoder[c] )
  641.         {
  642.         case ctype_name:
  643.         default:
  644.             goto do_name;
  645.         case ctype_btoken:
  646.             if ( !recognize_btokens() ) goto do_name;
  647.             /* otherwise, an empty name */
  648.         case ctype_exception:
  649.         case ctype_space:
  650.         /*
  651.          * Amazingly enough, the Adobe implementations don't accept
  652.          * / or // followed by [, ], <<, or >>, so we do the same.
  653.          * (Older versions of our code had a ctype_other case here
  654.          * that handled these specially.)
  655.          */
  656.         case ctype_other:
  657.             da.base = da.limit = daptr = 0;
  658.             da.is_dynamic = false;
  659.             goto nx;
  660.         }
  661.     case '%':
  662.     {    /* Scan as much as possible within the buffer. */
  663.         const byte *base = sptr;
  664.         const byte *end;
  665.         while ( ++sptr < endptr )    /* stop 1 char early */
  666.           switch ( *sptr )
  667.             {
  668.             case char_CR:
  669.               end = sptr;
  670.               if ( sptr[1] == char_EOL )
  671.             sptr++;
  672. cend:              /* Check for externally processed comments. */
  673.               retcode = scan_comment(base, end, false);
  674.               if ( retcode < 0 )
  675.             goto sret;
  676.               goto top;
  677.             case char_EOL:
  678.             case '\f':
  679.               end = sptr;
  680.               goto cend;
  681.             }
  682.         /*
  683.          * We got to the end of the buffer while inside a comment.
  684.          * If there is a possibility that we must pass the comment
  685.          * to an external procedure, move what we have collected
  686.          * so far into a private buffer now.
  687.          */
  688. #define comment_line da.buf
  689.         --sptr;
  690.         comment_line[1] = 0;
  691.         if ( scan_comment_proc != NULL ||
  692.              ((sptr == base || base[1] == '%') &&
  693.               scan_dsc_proc != NULL)
  694.            )
  695.           {    /* Could be an externally processable comment. */
  696.             uint len = sptr + 1 - base;
  697.             memcpy(comment_line, base, len);
  698.             daptr = comment_line + len;
  699.           }
  700.         else
  701.           {    /* Not a DSC comment. */
  702.             daptr = comment_line + (max_comment_line + 1);
  703.           }
  704.         da.base = comment_line;
  705.         da.is_dynamic = false;
  706.     }
  707.         /* Enter here to continue scanning a comment. */
  708.         /* daptr must be set. */
  709. cont_comment:    for ( ; ; )
  710.           { switch ( (c = scan_getc()) )
  711.               {
  712.               default:
  713.             if ( c < 0 )
  714.               switch ( c )
  715.                 {
  716.                 case INTC:
  717.                 case CALLC:
  718.                   da.next = daptr;
  719.                   scan_type = scanning_comment;
  720.                   goto pause;
  721.                 case EOFC:
  722.                   /*
  723.                    * One would think that an EOF in a comment
  724.                    * should be a syntax error, but there are
  725.                    * quite a number of files that end that way.
  726.                    */
  727.                   goto end_comment;
  728.                 default:
  729.                   sreturn(e_syntaxerror);
  730.                 }
  731.             if ( daptr < comment_line + max_comment_line )
  732.               *daptr++ = c;
  733.             continue;
  734.               case char_CR:
  735.               case char_EOL:
  736.               case '\f':
  737. end_comment:        retcode = scan_comment(comment_line, daptr, true);
  738.             if ( retcode < 0 )
  739.               goto sret;
  740.             goto top;
  741.               }
  742.           }
  743. #undef comment_line
  744.         /*NOTREACHED*/
  745.     case EOFC:
  746.         if ( pstack != 0 )
  747.           sreturn(e_syntaxerror)
  748.         retcode = scan_EOF;
  749.         break;
  750.     case ERRC:
  751.         sreturn(e_ioerror);
  752.  
  753.     /* Check for a Level 2 funny name (<< or >>). */
  754.     /* c is '<' or '>'.  We already did an ensure2. */
  755. try_funny_name:
  756.     {    int c1 = scan_getc();
  757.         if ( c1 == c )
  758.         {    s1[0] = s1[1] = c;
  759.             name_ref(s1, 2, myref, 1);    /* can't fail */
  760.             goto have_name;
  761.         }
  762.         scan_putback();
  763.     }    sreturn(e_syntaxerror);
  764.  
  765.     /* Handle separately the names that might be a number. */
  766.     case '0': case '1': case '2': case '3': case '4':
  767.     case '5': case '6': case '7': case '8': case '9':
  768.     case '.':
  769.         sign = 0;
  770. nr:        /*
  771.          * Skip a leading sign, if any, by conditionally passing
  772.          * sptr + 1 rather than sptr.  Also, if the last character
  773.          * in the buffer is a CR, we must stop the scan 1 character
  774.          * early, to be sure that we can test for CR+LF within the
  775.          * buffer, by passing endptr rather than endptr + 1.
  776.          */
  777.         retcode = scan_number(sptr + (sign & 1),
  778.                 endptr /*(*endptr == char_CR ? endptr : endptr + 1)*/,
  779.                 sign, myref, &newptr);
  780.         if ( retcode == 1 && decoder[newptr[-1]] == ctype_space )
  781.         {    sptr = newptr - 1;
  782.             if ( *sptr == char_CR && sptr[1] == char_EOL )
  783.                 sptr++;
  784.             retcode = 0;
  785.             break;
  786.         }
  787.         name_type = 0;
  788.         try_number = true;
  789.         goto do_name;
  790.     case '+':
  791.         sign = 1;
  792.         goto nr;
  793.     case '-':
  794.         sign = -1;
  795.         goto nr;
  796.  
  797.     /* Check for a binary object */
  798. #define case4(c) case c: case c+1: case c+2: case c+3
  799.     case4(128): case4(132): case4(136): case4(140):
  800.     case4(144): case4(148): case4(152): case4(156):
  801. #undef case4
  802.         if ( recognize_btokens() )
  803.         {    scan_end_inline();
  804.             retcode = (*scan_btoken_proc)(s, myref, &sstate);
  805.             scan_begin_inline();
  806.             if ( retcode == scan_Refill )
  807.               goto pause;
  808.             break;
  809.         }
  810.     /* Not a binary object, fall through. */
  811.  
  812.     /* The default is a name. */
  813.     default:
  814.         if ( c < 0 )
  815.           {    dynamic_init(&da, name_memory());    /* da state must be clean */
  816.             scan_type = scanning_none;
  817.             goto pause;
  818.           }
  819.     /* Populate the switch with enough cases to force */
  820.     /* simple compilers to use a dispatch rather than tests. */
  821.     case '!': case '"': case '#': case '$': case '&': case '\'':
  822.     case '*': case ',': case '=': case ':': case ';': case '?': case '@':
  823.     case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
  824.     case 'G': case 'H': case 'I': case 'J': case 'K': case 'L': case 'M':
  825.     case 'N': case 'O': case 'P': case 'Q': case 'R': case 'S':
  826.     case 'T': case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z':
  827.     case '\\': case '^': case '_': case '`':
  828.     case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
  829.     case 'g': case 'h': case 'i': case 'j': case 'k': case 'l': case 'm':
  830.     case 'n': case 'o': case 'p': case 'q': case 'r': case 's':
  831.     case 't': case 'u': case 'v': case 'w': case 'x': case 'y': case 'z':
  832.     case '|': case '~':
  833.         /* Common code for scanning a name. */
  834.         /* try_number and name_type are already set. */
  835.         /* We know c has ctype_name (or maybe ctype_btoken) */
  836.         /* or is a digit. */
  837.         name_type = 0;
  838.         try_number = false;
  839. do_name:
  840.         /* Try to scan entirely within the stream buffer. */
  841.         /* We stop 1 character early, so we don't switch buffers */
  842.         /* looking ahead if the name is terminated by \r\n. */
  843.         da.base = (byte *)sptr;
  844.         da.is_dynamic = false;
  845.         { const byte *endp1 = endptr - 1;
  846.           do
  847.             { if ( sptr >= endp1 )    /* stop 1 early! */
  848.                 goto dyn_name;
  849.             }
  850.           while ( decoder[*++sptr] <= max_name_ctype );    /* digit or name */
  851.         }
  852.         /* Name ended within the buffer. */
  853.         daptr = (byte *)sptr;
  854.         c = *sptr;
  855.         goto nx;
  856. dyn_name:    /* Name extended past end of buffer. */
  857.         scan_end_inline();
  858.         /* Initialize the dynamic area. */
  859.         /* We have to do this before the next */
  860.         /* sgetc, which will overwrite the buffer. */
  861.         da.limit = (byte *)++sptr;
  862.         da.memory = name_memory();
  863.         retcode = dynamic_grow(&da, da.limit, name_max_string);
  864.         if ( retcode < 0 )
  865.           {    dynamic_save(&da);
  866.             if ( retcode != e_VMerror )
  867.               sreturn(retcode);
  868.             scan_type = scanning_name;
  869.             goto pause_ret;
  870.           }
  871.         daptr = da.next;
  872.         /* Enter here to continue scanning a name. */
  873.         /* daptr must be set. */
  874. cont_name:    scan_begin_inline();
  875.         while ( decoder[c = scan_getc()] <= max_name_ctype )
  876.         {    if ( daptr == da.limit )
  877.             {    retcode = dynamic_grow(&da, daptr,
  878.                                name_max_string);
  879.                 if ( retcode < 0 )
  880.                   {    dynamic_save(&da);
  881.                     if ( retcode != e_VMerror )
  882.                       sreturn(retcode);
  883.                     scan_putback();
  884.                     scan_type = scanning_name;
  885.                     goto pause_ret;
  886.                   }
  887.                 daptr = da.next;
  888.             }
  889.             *daptr++ = c;
  890.         }
  891. nx:        switch ( decoder[c] )
  892.           {
  893.           case ctype_btoken:
  894.           case ctype_other:
  895.             scan_putback();
  896.             break;
  897.           case ctype_space:
  898.             /* Check for \r\n */
  899.             if ( c == char_CR )
  900.               {    if ( sptr >= endptr ) /* ensure2 */
  901.                   {    /* We have to check specially for */
  902.                     /* the case where the very last */
  903.                     /* character of a file is a CR. */
  904.                     if ( s->end_status != EOFC )
  905.                       {    sptr--;
  906.                         goto pause_name;
  907.                       }
  908.                   }
  909.                 else if ( sptr[1] == char_EOL )
  910.                     sptr++;
  911.               }
  912.             break;
  913.           case ctype_exception:
  914.             switch ( c )
  915.             {
  916.             case INTC:
  917.             case CALLC:
  918.                 goto pause_name;
  919.             case ERRC:
  920.                 sreturn(e_ioerror);
  921.             case EOFC:
  922.                 break;
  923.             }
  924.           }
  925.         /* Check for a number */
  926.         if ( try_number )
  927.         {    const byte *base = da.base;
  928.  
  929.             scan_sign(sign, base);
  930.             retcode = scan_number(base, daptr, sign, myref, &newptr);
  931.             if ( retcode == 1 )
  932.                 retcode = 0;
  933.             else if ( retcode != e_syntaxerror )
  934.             {    dynamic_free(&da);
  935.                 if ( name_type == 2 )
  936.                     sreturn(e_syntaxerror);
  937.                 break;    /* might be e_limitcheck */
  938.             }
  939.         }
  940.         if ( da.is_dynamic )
  941.         {    /* We've already allocated the string on the heap. */
  942.             uint size = daptr - da.base;
  943.             retcode = name_ref(da.base, size, myref, -1);
  944.             if ( retcode >= 0 )
  945.             {    dynamic_free(&da);
  946.             }
  947.             else
  948.             {    retcode = dynamic_resize(&da, size);
  949.                 if ( retcode < 0 )    /* VMerror */
  950.                   {    if ( c != EOFC )
  951.                       scan_putback();
  952.                     scan_type = scanning_name;
  953.                     goto pause_ret;
  954.                   }
  955.                 retcode = name_ref(da.base, size, myref, 2);
  956.             }
  957.         }
  958.         else
  959.         {    retcode = name_ref(da.base, (uint)(daptr - da.base),
  960.                        myref, 1);
  961.         }
  962.         /* Done scanning.  Check for preceding /'s. */
  963.         if ( retcode < 0 )
  964.           {    if ( retcode != e_VMerror )
  965.               sreturn(retcode);
  966.             if ( !da.is_dynamic )
  967.               {    da.next = daptr;
  968.                 dynamic_save(&da);
  969.               }
  970.             if ( c != EOFC )
  971.               scan_putback();
  972.             scan_type = scanning_name;
  973.             goto pause_ret;
  974.           }
  975. have_name:    switch ( name_type )
  976.         {
  977.         case 0:            /* ordinary executable name */
  978.             if ( r_has_type(myref, t_name) )    /* i.e., not a number */
  979.               r_set_attrs(myref, a_executable);
  980.         case 1:            /* quoted name */
  981.             break;
  982.         case 2:            /* immediate lookup */
  983.         {    ref *pvalue;
  984.             if ( !r_has_type(myref, t_name) )
  985.                 sreturn(e_undefined);
  986.             if ( (pvalue = dict_find_name(myref)) == 0 )
  987.                 sreturn(e_undefined);
  988.             if ( pstack != 0 &&
  989.                  r_space(pvalue) > ialloc_space(idmemory)
  990.                )
  991.                 sreturn(e_invalidaccess);
  992.             ref_assign_new(myref, pvalue);
  993.         }
  994.         }
  995.     }
  996. sret:    if ( retcode < 0 )
  997.       {    scan_end_inline();
  998.         if ( pstack != 0 )
  999.           ref_stack_pop(&o_stack,
  1000.                 ref_stack_count(&o_stack) - (pdepth - 1));
  1001.         return retcode;
  1002.       }
  1003.     /* If we are at the top level, return the object, */
  1004.     /* otherwise keep going. */
  1005.     if ( pstack == 0 )
  1006.       {    scan_end_inline();
  1007.         return retcode;
  1008.       }
  1009. snext:    if_not_spush1()
  1010.       {    scan_end_inline();
  1011.         scan_type = scanning_none;
  1012.         goto save;
  1013.       }
  1014.     myref = osp;
  1015.     goto top;
  1016.  
  1017.     /* Pause for an interrupt or callout. */
  1018. pause_name:
  1019.     /* If we're still scanning within the stream buffer, */
  1020.     /* move the characters to the private buffer (da.buf) now. */
  1021.     da.next = daptr;
  1022.     dynamic_save(&da);
  1023.     scan_type = scanning_name;
  1024. pause:
  1025.     retcode = scan_Refill;
  1026. pause_ret:
  1027.     scan_end_inline();
  1028. suspend:
  1029.     if ( pstack != 0 )
  1030.       osp--;        /* myref */
  1031. save:
  1032.     sstate.s_from_string = pstate->s_from_string;
  1033.     *pstate = sstate;
  1034.     return retcode;
  1035. }
  1036.